home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-08-05 | 510 b | 29 lines |
-
- package Pdapilot;
-
- import java.io.*;
-
- /** A representation of a database resource.
- */
-
- public class Resource extends Block {
- public int id, index;
- public Char4 type;
-
- Resource() {
- super();
- }
-
- Resource(byte[] contents, Char4 type, int id, int index) {
- this.id = id;
- this.index = index;
- this.type = type;
- this.unpack(contents);
- }
-
- public String toString() {
- return "<generic resource, type "+type+", id "+id+", index "+index+
- ", raw '"+Util.prettyPrint(raw)+"'>";
- }
- }
-